home *** CD-ROM | disk | FTP | other *** search
- stop();
- hitSpaceBig._height = 80;
- hitSpaceBig._width = 80;
- isFirstPass = true;
- this._visible = true;
- hitSpaceBig.onPress = function()
- {
- trace("mouse Press");
- mousePress();
- };
- hitSpaceBig.onRelease = function()
- {
- mouseRelease();
- };
- hitSpaceBig.onRollOver = function()
- {
- _root.setCursor("finger");
- mouseRollOver();
- };
- hitSpaceBig.onRollOut = function()
- {
- _root.setCursor("arrow");
- mouseRollOut();
- };
-